Sets the value of the time line at time t. Any previously set values later than t are removed.

Namespace:  Equis.JanusToolkit
Assembly:  Janus (in Janus.dll)

Syntax

C#
public void Set(
	int t,
	ValueType val
)

Parameters

t
Type: System..::..Int32
The time to set
val
Type: ValueType
The value to set at this time

Examples

 Copy imageCopy Code
            pointerPosition[myClientNumber].Set(0, new XYStatus(xMouse, yMouse, mouseDown));
            

See Also